home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000010_news@newsmaster….columbia.edu _Thu Jul 3 11:55:40 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA23389
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 3 Jul 1997 11:55:39 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA03127
  7.     for kermit.misc@watsun; Thu, 3 Jul 1997 11:55:39 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.unix.aix,comp.os.linux.misc,comp.protocols.kermit.misc
  11. Subject: Re: C-Kermit Paging script problem
  12. Date: 3 Jul 1997 15:55:36 GMT
  13. Organization: Columbia University
  14. Lines: 35
  15. Message-ID: <5pgi1o$31c$1@newsmaster.cc.columbia.edu>
  16. References: <33BA9E5A.742@ibm.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.unix.aix:115579 comp.os.linux.misc:202235 comp.protocols.kermit.misc:7254
  19.  
  20. In article <33BA9E5A.742@ibm.net>, Michael Roeder  <mroede1@ibm.net> wrote:
  21. : I downloaded C-Kermit from the Columbia U site and it works as Kermit,
  22. : but when I try to use the ckepage.ksc script it has problems TAKEing it.
  23. : It loads through the define of APAGE, but when it gets to TAPMSG it says
  24. : that a line is too long, or it contains NUL characters. I tried to
  25. : inspect the file with vi and didn't see anything odd. (except that it
  26. : was missing some ";" in front of 2 comments, which I fixed)
  27. I don't think so.  Which two comments?
  28.  
  29. : Is anyone using this script or would anyone try to use it for me? I need
  30. : to find out what the problem is. If Kermit doesn't work, I think I have
  31. : a Perl script that knows how to dial a pager.
  32. The problem is that the TAPMSG macro is slightly too long for the default
  33. C-Kermit command buffer length (1K).  The solution is to rebuild C-Kermit to
  34. use bigger buffers; cd to your C-Kermit source directory and:
  35.  
  36.   make clean
  37.   make rs6aix41c KFLAGS=-DBIGBUFOK  # (or "make rs6aix32c", "make linux", etc)
  38.  
  39. Then everything will work.  You'll also be able to have bigger packet and
  40. window sizes, etc.  (BIGBUFOK will be defined by default for AIX on RS/6000
  41. and PowerPC in the next C-Kermit release.)
  42.  
  43. Meanwhile, I have recoded TAPMSG to be less than 1K in length so it should
  44. work with any C-Kermit 6.0 build that does not exclude the script programming
  45. language:
  46.  
  47.   ftp://kermit.columbia.edu/kermit/f/ckepage.ksc
  48.  
  49. Please test the new compact version to make sure it is OK.  Send any further
  50. problem reports to kermit-support@columbia.edu.
  51.  
  52. - Frank